home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / KlingonBGApp.sit / Klingon BG App / Source / mainUtil.h < prev    next >
Text File  |  1997-06-28  |  778b  |  40 lines

  1. // Source code for Klingon Clock.   Copyright (C) 1996-1997
  2. // Charles H. Hemstreet IV
  3. //
  4. // Started at MacHack 1996
  5. // Completed at MacHack 1997
  6. //
  7. // Best thanks to:
  8. // My wife Regie, son Chad and baby
  9. // Other thanks to Elden Wood and Bob Clark
  10. //
  11. // This code is distributed "as-is" and implies no warranty or guarantee.
  12.  
  13.  
  14. #ifndef __MAINUTIL__
  15. #define __MAINUTIL__
  16.  
  17. #ifndef __ASSERT__
  18. #include <assert.h>
  19. #endif
  20.  
  21. #ifndef __TIMEUTIL__
  22. #include "timeUtil.h"
  23. #endif
  24.  
  25.  
  26. // DEFINES
  27. #define kMaxArray 6
  28.  
  29. // EXTERNAL PROTOTYPES
  30. extern OSErr     speakSentence(short *, short *, short *);
  31. extern OSErr     makeSentence(short *, short *, short *, short *);
  32.  
  33.  
  34. // prototypes
  35. void     gestaltChecks(void);
  36. OSErr     DoAllPeriodicProcessing(void);
  37. OSErr     doSuccessSound(void);
  38.  
  39. #endif // __MAINUTIL__
  40.